What is the best way to give support `nth-child` in one shot to all IE version?
Posted
by metal-gear-solid
on Stack Overflow
See other posts from Stack Overflow
or by metal-gear-solid
Published on 2010-05-17T17:25:15Z
Indexed on
2010/05/17
17:31 UTC
Read the original article
Hit count: 145
css
|JavaScript
What is the best way to give support nth-child
in one shot to all IE version?
I want to give style like this. for some particular pages.
#products tr:nth-child(even) {
background-color: red;
}
#products tr:nth-child(odd) {
background-color: white;
}
© Stack Overflow or respective owner